Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency aws-cdk-lib to v2.161.1 #131

Merged
merged 2 commits into from
Oct 9, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 10, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
aws-cdk-lib (source) 2.155.0 -> 2.161.1 age adoption passing confidence

Release Notes

aws/aws-cdk (aws-cdk-lib)

v2.161.1

Compare Source

Reverts

Alpha modules (2.161.1-alpha.0)

v2.161.0

Compare Source

Features
Bug Fixes

Alpha modules (2.161.0-alpha.0)
⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES
  • kinesisfirehose-destinations: the logging and logGroup properties in DestinationLoggingProps have been removed and replaced with a single optional property loggingConfig which accepts a class of type LoggingConfig.
Details

Combine the logging and logGroup properties into a single new optional property called loggingConfig which accepts a class of type LoggingConfig.

LoggingConfig is an abstract class which can be instantiated through either an instance of EnableLogging or DisableLogging which can be used in the following 3 ways:

import * as logs from 'aws-cdk-lib/aws-logs';

const logGroup = new logs.LogGroup(this, 'Log Group');
declare const bucket: s3.Bucket;

// 1. Enable logging with no parameters - a log group will be created for you
const destinationWithLogging = new destinations.S3Bucket(bucket, {
  loggingConfig: new destinations.EnableLogging(),
});

// 2. Enable a logging and pass in a logGroup to be used
const destinationWithLoggingAndMyLogGroup = new destinations.S3Bucket(bucket, {
  loggingConfig: new destinations.EnableLogging(logGroup),
});

// 3. Disable logging (does not accept any parameters so it is now impossible to provide a logGroup in this case)
const destinationWithoutLogging = new destinations.S3Bucket(bucket, {
  loggingConfig: new destinations.DisableLogging(),
});
Description of how you validated changes

unit + integ test

Checklist
Features
Bug Fixes
Miscellaneous Chores
  • kinesisfirehose-destinations: refactor logging to combine logGroup and logging properties into loggingConfig (#​31488) (c4bda64)

v2.160.0

Compare Source

Features

Alpha modules (2.160.0-alpha.0)
Features
Bug Fixes

v2.159.1

Compare Source

Reverts
  • fix(ec2): fixing vpc endpoint pattern for ecr and ecr docker (#​31496) (f7e8452)

Alpha modules (2.159.1-alpha.0)

v2.159.0

Compare Source

Features
Bug Fixes

Alpha modules (2.159.0-alpha.0)

⚠ BREAKING CHANGES TO EXPERIMENTAL FEATURES
  • kinesisfirehose-alpha: encryptionKey property is removed and encryption property type has changed from the StreamEncryption enum to the StreamEncryption class.

To pass in a KMS key for the customer managed key case, use StreamEncryption.customerManagedKey(key)

Details

Replaced encryption and encryptionKey properties with a single property encryption of type StreamEncryption and is used by calling one of the 3 methods:

SreamEncryption.unencrypted()
StreamEncryption.awsOwnedKey()
StreamEncryption.customerManagedKey(key?: IKey)

This makes it so it's not longer possible to pass in a key when the encryption type is AWS owned or unencrypted. The key is an optional parameter in StreamEncryption.customerManagedKey(key?: IKey) so following the previous behaviour, if a key is provided it will be used, otherwise a key will be created for the user.

Description of how you validated changes

Generated templates do not change so behaviour remains the same.

Updated integ/unit tests.

Checklist
Features
Bug Fixes
Miscellaneous Chores
  • kinesisfirehose-alpha: refactor encryption property to combine encryptionKey (#​31430) (8e92185)

v2.158.0

Compare Source

Bug Fixes

Alpha modules (2.158.0-alpha.0)

Features

v2.157.0

Compare Source

Features
Bug Fixes

Alpha modules (2.157.0-alpha.0)

v2.156.0

Compare Source

Features
Bug Fixes

Alpha modules (2.156.0-alpha.0)

Features
Bug Fixes

Configuration

📅 Schedule: Branch creation - "before 6am,every weekend" in timezone Europe/Oslo, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link
Contributor Author

renovate bot commented Sep 10, 2024

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.


  • Branch has one or more failed status checks

@renovate renovate bot requested a review from a team as a code owner September 10, 2024 04:22
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 3 times, most recently from c42222b to bcb1bcc Compare September 13, 2024 03:27
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.156.0 chore(deps): update dependency aws-cdk-lib to v2.157.0 Sep 13, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 4 times, most recently from a7648c9 to c629f9e Compare September 14, 2024 22:12
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.157.0 chore(deps): update dependency aws-cdk-lib to v2.158.0 Sep 14, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 7 times, most recently from bb2df56 to 306757f Compare September 22, 2024 04:06
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.158.0 chore(deps): update dependency aws-cdk-lib to v2.159.0 Sep 22, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 2 times, most recently from 6a0b2e3 to f8aaeeb Compare September 23, 2024 00:25
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.159.0 chore(deps): update dependency aws-cdk-lib to v2.159.1 Sep 23, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 4 times, most recently from 048dba2 to 69e9cd0 Compare September 27, 2024 18:37
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.159.1 chore(deps): update dependency aws-cdk-lib to v2.160.0 Sep 27, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 3 times, most recently from ff17932 to 40ca520 Compare September 29, 2024 00:12
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 7 times, most recently from 30b7d21 to 63e13d6 Compare October 4, 2024 04:14
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 63e13d6 to 6648f8d Compare October 7, 2024 03:48
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.160.0 chore(deps): update dependency aws-cdk-lib to v2.161.0 Oct 7, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch 2 times, most recently from bd17fc4 to 8ed9f4c Compare October 8, 2024 07:27
@renovate renovate bot changed the title chore(deps): update dependency aws-cdk-lib to v2.161.0 chore(deps): update dependency aws-cdk-lib to v2.161.1 Oct 8, 2024
@renovate renovate bot force-pushed the renovate/aws-cdk-monorepo branch from 8ed9f4c to 195e3d8 Compare October 8, 2024 07:28
@joakimen joakimen merged commit 2c9b1af into master Oct 9, 2024
1 check passed
@joakimen joakimen deleted the renovate/aws-cdk-monorepo branch October 9, 2024 12:22
Copy link

github-actions bot commented Oct 9, 2024

🎉 This PR is included in version 2.2.6 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant